home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / STYLE3.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  1KB  |  46 lines

  1.                               /* Chapter 11 - Program 9 - STYLE3.C */
  2. /* STYLE3.C - Style illustration file                              */
  3. /* copyright - Coronado Enterprises - 1994                         */
  4.  
  5. /* The only purpose for this program is to illustrate a typical    */
  6. /*  style that can be used in any application.                     */
  7.  
  8. #include "stdio.h"
  9. #include "string.h"
  10. #include "style3.h"
  11.  
  12. void main()
  13. {
  14. struct alldat student[53];
  15. struct alldat teacher, sub;
  16.  
  17.    teacher.grade = 94;
  18.    teacher.descrip.age = 34;
  19.    teacher.descrip.status = 'M';
  20.    strcpy(teacher.descrip.name, "Mary Smith");
  21.    strcpy(teacher.lunch, "Baloney sandwich");
  22.  
  23.    sub.descrip.age = 87;
  24.    sub.descrip.status = 'M';
  25.    strcpy(sub.descrip.name, "Old Lady Brown");
  26.    sub.grade = 73;
  27.    strcpy(sub.lunch, "Yogurt and toast");
  28.  
  29.    student[1].descrip.age = 15;
  30.    student[1].descrip.status = 'S';
  31.    strcpy(student[1].descrip.name, "Billy Boston");
  32.    strcpy(student[1].lunch, "Peanut Butter");
  33.    student[1].grade = 77;
  34.  
  35.    student[7].descrip.age = 14;
  36.    student[12].grade = 87;
  37. }
  38.  
  39.  
  40.  
  41. /* Result of execution
  42.  
  43. (There is no output from this program)
  44.  
  45. */
  46.